home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 2002 November / SGI IRIX Base Documentation 2002 November.iso / usr / share / catman / p_man / cat3 / SCSL / cpotri.z / cpotri
Encoding:
Text File  |  2002-10-03  |  3.2 KB  |  133 lines

  1.  
  2.  
  3.  
  4. CCCCPPPPOOOOTTTTRRRRIIII((((3333SSSS))))                                                          CCCCPPPPOOOOTTTTRRRRIIII((((3333SSSS))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      CPOTRI - compute the inverse of a complex Hermitian positive definite
  10.      matrix A using the Cholesky factorization A = U**H*U or A = L*L**H
  11.      computed by CPOTRF
  12.  
  13. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  14.      SUBROUTINE CPOTRI( UPLO, N, A, LDA, INFO )
  15.  
  16.          CHARACTER      UPLO
  17.  
  18.          INTEGER        INFO, LDA, N
  19.  
  20.          COMPLEX        A( LDA, * )
  21.  
  22. IIIIMMMMPPPPLLLLEEEEMMMMEEEENNNNTTTTAAAATTTTIIIIOOOONNNN
  23.      These routines are part of the SCSL Scientific Library and can be loaded
  24.      using either the -lscs or the -lscs_mp option.  The -lscs_mp option
  25.      directs the linker to use the multi-processor version of the library.
  26.  
  27.      When linking to SCSL with -lscs or -lscs_mp, the default integer size is
  28.      4 bytes (32 bits). Another version of SCSL is available in which integers
  29.      are 8 bytes (64 bits).  This version allows the user access to larger
  30.      memory sizes and helps when porting legacy Cray codes.  It can be loaded
  31.      by using the -lscs_i8 option or the -lscs_i8_mp option. A program may use
  32.      only one of the two versions; 4-byte integer and 8-byte integer library
  33.      calls cannot be mixed.
  34.  
  35. PPPPUUUURRRRPPPPOOOOSSSSEEEE
  36.      CPOTRI computes the inverse of a complex Hermitian positive definite
  37.      matrix A using the Cholesky factorization A = U**H*U or A = L*L**H
  38.      computed by CPOTRF.
  39.  
  40. AAAARRRRGGGGUUUUMMMMEEEENNNNTTTTSSSS
  41.      UPLO    (input) CHARACTER*1
  42.              = 'U':  Upper triangle of A is stored;
  43.              = 'L':  Lower triangle of A is stored.
  44.  
  45.      N       (input) INTEGER
  46.              The order of the matrix A.  N >= 0.
  47.  
  48.      A       (input/output) COMPLEX array, dimension (LDA,N)
  49.              On entry, the triangular factor U or L from the Cholesky
  50.              factorization A = U**H*U or A = L*L**H, as computed by CPOTRF.
  51.              On exit, the upper or lower triangle of the (Hermitian) inverse
  52.              of A, overwriting the input factor U or L.
  53.  
  54.      LDA     (input) INTEGER
  55.              The leading dimension of the array A.  LDA >= max(1,N).
  56.  
  57.      INFO    (output) INTEGER
  58.              = 0:  successful exit
  59.              < 0:  if INFO = -i, the i-th argument had an illegal value
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. CCCCPPPPOOOOTTTTRRRRIIII((((3333SSSS))))                                                          CCCCPPPPOOOOTTTTRRRRIIII((((3333SSSS))))
  71.  
  72.  
  73.  
  74.              > 0:  if INFO = i, the (i,i) element of the factor U or L is
  75.              zero, and the inverse could not be computed.
  76.  
  77. SSSSEEEEEEEE AAAALLLLSSSSOOOO
  78.      INTRO_LAPACK(3S), INTRO_SCSL(3S)
  79.  
  80.      This man page is available only online.
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.                                                                         PPPPaaaaggggeeee 2222
  130.  
  131.  
  132.  
  133.